home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000298_news@newsmaster….columbia.edu _Fri Sep 5 12:09:39 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  6KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA05179
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 5 Sep 1997 12:09:39 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA17935
  7.     for kermit.misc@watsun; Fri, 5 Sep 1997 12:09:38 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.unix.solaris,comp.protocols.kermit.misc
  11. Subject: Re: KERMIT (solaris): easy way to install,use?
  12. Date: 5 Sep 1997 16:09:35 GMT
  13. Organization: Columbia University
  14. Lines: 137
  15. Distribution: inet
  16. Message-ID: <5uparv$fp2$1@apakabar.cc.columbia.edu>
  17. References: <dkcombsEG0ss8.B6v@netcom.com>
  18. NNTP-Posting-Host: watsun.cc.columbia.edu
  19. Xref: news.columbia.edu comp.unix.solaris:132537 comp.protocols.kermit.misc:7619
  20.  
  21. In article <dkcombsEG0ss8.B6v@netcom.com>,
  22. David Combs <dkcombs@netcom.com> wrote:
  23. : I have a "shell" account on netcom.com;
  24. : am currently using "tip", and love it;
  25. : super simple to use, only a man page to
  26. : read, does what I want.
  27. : Except it sends only 7-bit ascii, and
  28. : screws up when it sees 8-bit suprise-chars.
  29. : So, must switch to something else.  People
  30. : have suggested Kermit (ckermit).
  31. : So I got this book on c-kermit.  Darn book
  32. : is over 600 pages long!
  33. : Hey, is there any EASY way to use this thing?
  34. If you need help, you are perfectly entitled to
  35. send email to kermit-support@columbia.edu.
  36.  
  37. : Do I really have to read (master) a 600 page
  38. : book, when all I want to do is to get something
  39. : more modern than "tip"?
  40. It's the old story.  You start out with something
  41. simple, users like it BUT it just needs this ONE
  42. MORE feature...  And for each user, that one more
  43. feature is a different one.
  44.  
  45. : There must be some SMALL documentation SOMEWHERE
  46. : about this..., huh?
  47. As with TIP there is a man page.  Did you try "man
  48. kermit"?  If it didn't work that means your ISP
  49. did not install it.  You can pick it up yourself
  50. from:
  51.  
  52.   ftp://kermit.columbia.edu/kermit/f/ckuker.nr
  53.  
  54. You can look at it with:
  55.  
  56.   nroff -man ckuker.nr
  57.  
  58. Anyway, if you can be more specific about what you
  59. want to do with C-Kermit, I'll be glad to help you
  60. get started.  Since you say you have been using tip,
  61. but you have trouble with 8-bit character sets,
  62. that probably that means you want to dial out to a
  63. host that uses 8-bit character sets, and then maybe
  64. transfer files.
  65.  
  66. So to dial out (assuming Netcom is running the
  67. current version of C-Kermit, which is 6.0):
  68.  
  69.   set modem type xxxx ; where xxxx is the type of modem
  70.  
  71. In any field you can type a ? to see the possibilities:
  72.  
  73.   set modem type ?
  74.  
  75. lists all the possible modem types.
  76.  
  77. Next, say which device you will be using, like:
  78.  
  79.   set line /dev/cua
  80.  
  81. If this gives an error message, it means that Netcom
  82. didn't install Kermit properly (they probably need
  83. to do something with setuid and/or setgid -- we give
  84. complete installation instructions, but we can't
  85. hold a gun to their heads to force them read and
  86. follow them).  The installation instructions for UNIX
  87. are in the UNIX appendix of the book, and also online
  88. as a plain-text file at:
  89.  
  90.   ftp://kermit.columbia.edu/kermit/f/ckuins.doc
  91.  
  92. Then tell it the interface speed to use:
  93.  
  94.   set speed 57600  ; or whatever
  95.  
  96. Now give it any necessary communications settings,
  97. like:
  98.  
  99.   set parity even
  100.  
  101. or:
  102.  
  103.   set terminal bytesize 8
  104.   set terminal command 8
  105.   set parity none
  106.  
  107. Hint: if you have a clean 8-bit connection, just type
  108. "eight" at the prompt or start the program with the
  109. "-8" command-line option, e.g. "kermit -8"; this takes
  110. the place of the three commands just above.
  111.  
  112. Then have it dial the number:
  113.  
  114.   dial 7654331     ; or whatever
  115.  
  116. If there is a problem (no dialtone, busy, etc),
  117. you'll get the appropriate error message.  If there
  118. is no problem, then poof, you're online.
  119.  
  120. To get back to the C-Kermit prompt, type Ctrl-\
  121. followed by the letter C.
  122.  
  123. So why is the book so thick?  Because (a) so many things
  124. can go wrong when trying to make connections, or use them;
  125. (b) there is so much variety among connection types and
  126. devices; (c) file transfer must be explained too, and
  127. there are many many options which are there because people
  128. need them; (c) C-Kermit includes a complete programming
  129. language so you can write scripts to do things
  130. automatically (so you don't have to type the same commands
  131. over and over again); (c) character sets (e.g. for German,
  132. French, Hebrew, Japanese, Russian, etc) need a lot of
  133. explaining -- not everybody is a native English speaker!
  134.  
  135. Etc etc.  Note that once you've become comfortable with
  136. the basics of C-Kermit you can use it not only for dialing
  137. out, but also as your Telnet client, and you can do things
  138. with it (file transfer, character-set translation, scripting)
  139. that you can't do with tip or telnet (or ftp), and you can
  140. do them in a consistent way, independent of (a) connection
  141. type and (b) platform.  For example, the scripts you
  142. develop are portable to hundreds of different platforms,
  143. and not just UNIX either, but also Windows, DOS, OS/2, VMS,
  144. VOS, AOS/VS, and many others.
  145.  
  146. I hope this helps get you started.  If not, follow up to
  147. the email address given above, or to the Kermit newsgroup,
  148. comp.protocols.kermit.misc.
  149.  
  150. - Frank